home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / A-max ECS-PAL.adf / devs / mountlist < prev    next >
Text File  |  1988-08-29  |  4KB  |  156 lines

  1. /* MountList for V1.3 */
  2.  
  3. RES0: Device = hddisk.device
  4.       Unit = 1
  5.       Flags = 0
  6.       Surfaces = 4
  7.       BlocksPerTrack = 17
  8.       Reserved = 2
  9.       Interleave = 3
  10.       LowCyl = 0 ; HighCyl = 782
  11.       Buffers = 20
  12.       BufMemType = 0
  13. #
  14.  
  15. RES1: Device = hddisk.device
  16.       Unit = 2
  17.       Flags = 0
  18.       Surfaces = 8
  19.       BlocksPerTrack = 17
  20.       Reserved = 0
  21.       Interleave = 3
  22.       LowCyl = 0 ; HighCyl = 1023
  23.       Buffers = 20
  24.       BufMemType = 0
  25. #
  26. /*  Mount Entry for the new Console Handler */
  27.  
  28. NEWCON: 
  29.       Handler = L:Newcon-Handler
  30.       Priority = 5
  31.       StackSize = 1000
  32. #
  33.  
  34. /* This is an example of a non-filing system mount using a handler written
  35.    in C.
  36. */
  37.  
  38. SPEAK:     
  39.       Handler = L:Speak-Handler
  40.       Stacksize = 6000
  41.       Priority = 5
  42.       GlobVec = -1
  43. #
  44.  
  45. /*  This is an example of an alternative type of non-filing device mount,
  46.     used to mount the non-buffered serial handler
  47. */
  48.  
  49. AUX:
  50.       Handler = L:Aux-Handler
  51.       Stacksize = 1000
  52.       Priority = 5
  53. #
  54. /*  This is a non-filing system device */
  55.  
  56. PIPE:      
  57.       Handler = L:Pipe-Handler
  58.       Stacksize = 6000
  59.       Priority = 5
  60.       GlobVec = -1
  61. #
  62.  
  63. /* This is an example of a mount list entry for using the recoverable 
  64.    ram disk.  Depending on the amount of memory you wish to devote to
  65.    it, you may want to change the HighCyl value.
  66. */
  67.  
  68. RAD:  Device = ramdrive.device
  69.       Unit   = 0
  70.       Flags  = 0
  71.       Surfaces  = 2
  72.       BlocksPerTrack = 11
  73.       Reserved = 2
  74.       Interleave = 0
  75.       LowCyl = 0  ;  HighCyl = 12
  76.       Buffers = 5
  77.       BufMemType = 1
  78. #
  79.  
  80. /* Mount a 5.25" disk drive to be mounted as DF2: */
  81.  
  82. DF3:  Device = trackdisk.device
  83.       Unit   = 3
  84.       Flags  = 1
  85.       Surfaces  = 2
  86.       BlocksPerTrack = 11
  87.       Reserved = 2
  88.       Interleave = 0
  89.       LowCyl = 0  ;  HighCyl = 39
  90.       Buffers = 20
  91.       BufMemType = 3
  92. #
  93.  
  94. /* An example mount entry using the fast file system with a partition
  95.    of the hard disk using the 2090 disk controller.  PREP has been
  96.    used to create the first partition (up to cylinder 20).  The second
  97.    partition is MOUNTed, using the following entry:
  98.    NOTE: Some hard disk drivers require more stack than specified here.
  99.    Some may required less.
  100.    (The hard disk is not included; this is only an example.)
  101. */
  102.  
  103. HD1:  Device = hddisk.device
  104.       FileSystem = l:FastFileSystem
  105.       Unit   = 1
  106.       Flags  = 0
  107.       Surfaces  = 4
  108.       BlocksPerTrack = 17
  109.       Reserved = 2
  110.       Interleave = 3
  111.       LowCyl = 8  ;  HighCyl = 782
  112.       Buffers = 20
  113.       GlobVec = -1
  114.       BufMemType = 1
  115.       Mount = 1
  116.       DosType = 0x444F5301
  117.       StackSize = 4000
  118. #
  119.  
  120. HD0:  Device = hddisk.device
  121.       FileSystem = l:FastFileSystem
  122.       Unit = 1
  123.       Flags = 0
  124.       Surfaces = 4
  125.       BlocksPerTrack = 17
  126.       Reserved = 2
  127.       Interleave = 3
  128.       LowCyl = 8 ; HighCyl = 614
  129.       Buffers = 20
  130.       GlobVec = -1
  131.       BufMemType = 1
  132.       Mount = 1
  133.       DosType = 0x444f5301
  134.       StackSize = 4000
  135. #
  136.  
  137. /* Let's say you have an A2000 with an internal drive, and an external
  138.    drive, and you want to refer to the external drive as DF1: as well
  139.    as DF2:   Well, this MountList entry will do it for you.  This technique
  140.    can be extended to provide you with a drive A: and B: if you really
  141.    want.
  142. */
  143.  
  144. DF1:  Device = trackdisk.device
  145.       Unit   = 2
  146.       Flags  = 1
  147.       Surfaces  = 2
  148.       BlocksPerTrack = 11
  149.       Reserved = 2
  150.       Interleave = 0
  151.       LowCyl = 0  ;  HighCyl = 79
  152.       Buffers = 20
  153.       BufMemType = 3
  154. #
  155.  
  156.